.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}
.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomIn 8s ease-out forwards;
    transform-origin: center center;
}
@keyframes zoomIn {
    from {
        transform: scale(1);
        
    }
    to {
        transform: scale(1.1);
        opacity: 1;
    }
}

.carousel h2 {
    position: absolute;
    top: 40%; /* 自定义最终位置 */
    left: 20%;
    transform: translateX(-50%);
    color: white;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    opacity: 0;
    animation: slideIn 1.2s ease-out forwards;
    z-index: 2;
    /* 在h2样式中添加 */
    animation-delay: 0.5s; /* 添加动画延迟 */
    font-size: 3rem; /* 调整字体大小 */
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7); /* 加强阴影效果 */
    letter-spacing: 2px; /* 增加字间距 */
    animation-delay: 0.5s; /* 保持原有延迟 */
}
.carousel p.subtitle {
    font-weight: bold;
    font-family: objectivity-black-slanted-2;
    font-size: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 82%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: absolute;
    top: 25%;
    left: 35%;
    transform: translateX(-50%);
    font-size: 190px;
    letter-spacing: 2px;
    animation: slideIn 1.2s ease-out forwards;
    animation-delay: 0.5s;
    z-index: 2;;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-100%) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
} 
.container {
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
    gap: 30px;
    padding: 20px;
    background: #f5f5f5; /* 灰色背景 */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 左侧图片容器 */
.image-box {
    flex: 1;
    min-width: 400px;
    height: 400px;
    background: #ddd url('your-image.jpg') center/cover;
    border-radius: 6px;
}

/* 右侧文字容器 */
.text-container {
    flex: 1;
    padding: 20px;
    opacity: 0; /* 初始不可见 */
    transform: translateY(30px); /* 初始位置 */
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

/* 标题样式 */
.title {
    position: relative;
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    padding-left: 30px;
}

/* 蓝色装饰方框 */
.title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 35px;
    /* background: #2196F3; */
    /* border-radius: 3px; */
}

/* 文字内容样式 */
.content {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-indent: 2em; /* 首行缩进 */
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

/* 动画定义 */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-container,
.text-container-right {
    opacity: 0; /* 初始不可见 */
    transform: translateY(30px); /* 初始位置 */
    transition: all 0.8s ease-out; /* 添加过渡效果 */
}

.visible {
    opacity: 1 !important;  /* 添加!important确保状态变化 */
    transform: translateY(0) !important;
}
/* 移除这些动画相关的CSS，因为我们使用transition */
.text-container,
.text-container-right,
.content,
.content-right 
.container-right{
    animation: none !important;
    animation-delay: 0 !important;
}
.text-container.visible,
.text-container-right.visible {
    opacity: 1; /* 可见时的状态 */
    transform: translateY(0); /* 位置回归 */
}
/* 移除现有的animation属性，因为我们将使用transitions代替 */
.text-container,
.text-container-right {
    animation: none;
    animation-delay: 0;
}

.content,
.content-right {
    animation: none;
    animation-delay: 0;
    opacity: 1;
    transform: none;
}


/* 大容器样式 */
.container-right {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 右侧图片容器 */
.image-box-right {
    flex: 1;
    min-width: 400px;
    height: 400px;
    background: #ddd url('your-image.jpg') center/cover;
    border-radius: 6px;
    order: 2; /* 新增顺序控制 */
}

/* 左侧文字容器 */
.text-container-right {
    flex: 1;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
    order: 1; /* 新增顺序控制 */
}

/* 保持原有标题样式 */
.title-right {
    position: relative;
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    padding-left: 30px;
}

.title-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 35px;
    background: #2196F3;
    /* /* border-radius: 3px; */
}
/* 保持内容样式 */
.content-right {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-indent: 2em;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

/* 保持动画定义 */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 优化响应式布局 */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .image-box {
        order: 1; /* 移动端图片在上 */
        min-width: auto;
        height: 300px;
    }
    .text-container {
        order: 2; /* 移动端文字在下 */
    }
}
.Content {
    background-color: #f9f9f5;
        min-height: 100vh;
        position: relative;
        overflow: hidden;
}
.containers-every {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
    align-items: center; /* 新增 */
    min-height: calc(100vh - 160px); /* 新增 根据实际高度调整 */
    position: relative;
}

.about-title {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    position: relative;
    
    transform: translateY(60px); /* 新增：向下移动60px */
    z-index: 1;
}

.about-title h1 {
    font-size: 48px;
    color: #ddd;
    font-weight: 200;
    margin-right: 10px;
}

.about-title h2 {
    font-size: 28px;word-break: keep-all; /* 适合中文换行 */

    color: #333;
    font-weight: 500;
}

.about-title .icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: #4CAF50;
    opacity: 0.2;
    border-radius: 5px;
}

.about-content {
    width: 60%;
    margin-top: -20px; /* 补偿标题下移造成的空隙 */
}

.slogan {
    font-size: 24px;
    color: #4CAF50;
    margin-bottom: 30px;
    font-weight: 500;
}

.description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.stats {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: flex-start;
    margin-top: -120px; /* 从-130改为-160 */
    position: relative;
}
.stats.img-one {
    max-width: 100%;
    height: 280px !important;
}
.stats img {
    max-width: 100%;
    height: 250px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    background-color: #2E7D32;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
}

.explore-btn .arrow {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.explore-btn .arrow::after {
    content: "→";
    color: #2E7D32;
    font-weight: bold;
}

.bg-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.dot {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: #4CAF50;
    opacity: 0.3;
    border-radius: 50%;
}

.leaves-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
}

/* 飘动的叶子样式 */
.leaves-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
}

/* 不同形状的叶子 */
.leaf-1 {
    background-image: url('https://picture-xinjuhang.oss-cn-beijing.aliyuncs.com/uploads/images/Contact-Us/11.png');
    animation: float1 20s infinite ease-in-out;
}

.leaf-2 {
    background-image: url('https://picture-xinjuhang.oss-cn-beijing.aliyuncs.com/uploads/images/Contact-Us/12.png');
    animation: float2 25s infinite ease-in-out;
}

.leaf-3 {
    background-image: url('https://picture-xinjuhang.oss-cn-beijing.aliyuncs.com/uploads/images/Contact-Us/13.png');
    animation: float3 22s infinite ease-in-out;
}
.leaf-4 {
    background-image: url('../images/Contact-Us/14.png');
    animation: float4 18s infinite ease-in-out;
}
.leaf-5 {
    background-image: url('../images/Contact-Us/15.png');
    animation: float5 24s infinite ease-in-out;
}
.leaf-6 {
    background-image: url('../images/Contact-Us/16.png');
    animation: float6 20s infinite ease-in-out;
}
.leaf-7 {
    background-image: url('../images/Contact-Us/17.png');
    animation: float7 22s infinite ease-in-out;
}
.leaf-8 {
    background-image: url('../images/Contact-Us/19.png');
    animation: float8 26s infinite ease-in-out;
}
.leaf-9 {
    background-image: url('../images/Contact-Us/201.png');
    animation: float9 19s infinite ease-in-out;
}

/* 叶子飘动动画 */
@keyframes float1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 100px) rotate(45deg);
    }
    50% {
        transform: translate(200px, 50px) rotate(90deg);
    }
    75% {
        transform: translate(100px, 200px) rotate(45deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-100px, 150px) rotate(-30deg);
    }
    66% {
        transform: translate(-50px, 50px) rotate(-60deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    20% {
        transform: translate(50px, -50px) rotate(20deg);
    }
    40% {
        transform: translate(100px, 0) rotate(40deg);
    }
    60% {
        transform: translate(50px, 50px) rotate(20deg);
    }
    80% {
        transform: translate(0, 100px) rotate(0deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    
}
@keyframes float4 {
    0%, 100% { transform: translate(0,0) rotate(0deg); }
    50% { transform: translate(120px, 80px) rotate(120deg); }
}

@keyframes float5 {
    0% { transform: translate(0,0) rotate(0deg); }
    33% { transform: translate(-80px, 120px) rotate(-45deg); }
    66% { transform: translate(60px, -60px) rotate(90deg); }
    100% { transform: translate(0,0) rotate(0deg); }
}

@keyframes float6 {
    0% { transform: translate(0,0) scale(1); }
    10% { transform: translate(100px, 150px) scale(0.8) rotate(180deg); }
    100% { transform: translate(0,0) scale(1); }
}
@keyframes float7 {
    0%, 100% { transform: translate(0,0) rotate(0deg); }
    50% { transform: translate(120px, 80px) rotate(120deg); }
}

@keyframes float8 {
    0% { transform: translate(0,0) rotate(0deg); }
    33% { transform: translate(-80px, 120px) rotate(-45deg); }
    86% { transform: translate(60px, -60px) rotate(90deg); }
    100% { transform: translate(0,0) rotate(0deg); }
}

@keyframes float9 {
    0% { transform: translate(0,0) scale(1); }
    70% { transform: translate(100px, 150px) scale(0.8) rotate(180deg); }
    100% { transform: translate(0,0) scale(1); }
}

.Module {
    font-family: 'Microsoft YaHei', sans-serif;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100vh;
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.6s ease;
    opacity: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.Science {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: stretch;
}

.title {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    z-index: 10;
}

.section {
    flex: 1;
    position: relative;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 15px;
    cursor: pointer;
    min-height: 100vh;
}

.section:last-child {
    border-right: none;
}

.section:hover {
    background-color: rgba(53, 89, 146, 0.8);
    transform: scale(1.02);
}

.section.active {
    background-color: rgba(53, 89, 146, 0.8);
}

.icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.section:hover .icon {
    transform: scale(1.1);
}

.icon img, .icon svg {
    width: 100%;
    height: 100%;
}

.section-title {
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.section:hover .section-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.section-subtitle {
    color: white;
    font-size: 16px;
    text-align: center;
    opacity: 0.8;
}

.section-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-align: center;
    max-width: 90%;
    margin-top: 20px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    line-height: 1.5;
}

.section:hover .section-content {
    opacity: 1;
    height: auto;
    margin-top: 20px;
}

.section.active .section-content {
    opacity: 1;
    height: auto;
}

.section-image {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.section:not(.active) .section-image {
    display: block;
}

.content-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.content-panel.active {
    opacity: 1;
    pointer-events: auto;
}

.content-wrapper {
    background-color: rgba(19, 39, 82, 0.85);
    padding: 30px 50px;
    border-radius: 5px;
    text-align: center;
    color: white;
    max-width: 600px;
}

.content-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.content-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: white;
}

.stats {
    display: flex;
    justify-content: center;
    
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: bold;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.action-button {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 25px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.action-button:hover {
    background-color: white;
    color: #0e2d5f;
}

.bottom-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    z-index: 20;
}

.bottom-icon {
    width: 40px;
    height: 40px;
    background-color: #0e7bef;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bottom-icon:hover {
    background-color: #0a5cb9;
}

.bottom-icon img {
    width: 24px;
    height: 24px;
}
/* 在about.css中添加 */
:root {
    --nav-height: 80px; /* 根据实际导航栏高度修改 */
  }
  
  /* 现代浏览器方案 */
  :target {
    scroll-margin-top: var(--nav-height);
  }
  
  /* 传统浏览器兼容方案 */
  :target::before {
    content: "";
    display: block;
    height: var(--nav-height);
    margin-top: calc(-1 * var(--nav-height));
    visibility: hidden;
  }
  
  /* 响应式适配 */
  @media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }
  }

/* 响应式设计 */
/* 大屏幕设备 (1200px以上) */
@media screen and (min-width: 1200px) {
    .containers-every {
        max-width: 1200px;
    }
    
    .about-content {
        width: 60%;
    }
    
    .stats {
        width: 40%;
    }
}

/* 平板设备 (768px - 1199px) */
@media screen and (max-width: 1199px) {
    .containers-every {
        max-width: 90%;
        padding: 15px;
    }
    
    .about-section {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .about-content {
        width: 100%;
        margin-top: 30px;
    }
    
    .stats {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin-top: 30px;
        align-items: center;
    }
    
    .stats img {
        height: 200px;
        margin-right: 30px;
    }
    
    .carousel h2 {
        font-size: 2.5rem;
        left: 50%;
    }
    
    .carousel p.subtitle {
        font-size: 120px;
        left: 50%;
    }
    
    .Module {
        height: auto;
        min-height: 100vh;
    }
    
    .Science {
        flex-wrap: wrap;
    }
    
    .section {
        flex: 0 0 50%;
        height: 50vh;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .section:nth-child(2n) {
        border-right: none;
    }
}
    
/* 手机设备 (767px以下) */
@media screen and (max-width: 767px) {
    .carousel {
        height: 60vh;
        min-height: 400px;
    }
    
    .carousel img {
        min-height: 60vh;
    }
    
    .carousel h2 {
        font-size: 2rem;
        top: 30%;
    }
    
    .carousel p.subtitle {
        font-size: 80px;
        top: 15%;
    }
    
    .about-title {
        transform: translateY(30px);
    }
    
    .about-title h1 {
        font-size: 36px;
    }
    
    .about-title h2 {
        font-size: 24px;
    }
    
    .slogan {
        font-size: 20px;
    }
    
    .description {
        font-size: 14px;
    }
    
    .stats img {
        height: 150px;
    }
    
    .Module {
        height: auto;
    }
    
    .Science {
        flex-direction: column;
    }
    
    .section {
        flex: 0 0 100%;
        height: auto;
        min-height: 300px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .section:last-child {
        border-bottom: none;
    }
    
    .section-content {
        max-width: 90%;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .icon {
        width: 50px;
        height: 50px;
    }
    
    .title {
        font-size: 28px;
        top: 5%;
    }
}
@media screen and (max-width: 580px) {
    .carousel {
        height: 50vh;
        min-height: 300px;
    }
    .about-title {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 30px;
        align-items: center;
    }
    .stats img{
        height: 100px;
        margin-right: 10px;
    }
}
/* 小屏手机设备 (480px以下) */
@media screen and (max-width: 480px) {
    .carousel {
        height: 50vh;
        min-height: 300px;
    }
    .containers-every{
        padding: 0px;
    }
    .icon img, .icon svg {
        margin-top: -23px;
    }
    .about-title h1{
        font-size: 24px;
    }
    .about-title .icon{
        width: 30px;
        height: 30px;
        margin-right: 5px;
    }
    .stats img{
        height: 80px;
       
    }
    .stats img:nth-child(1) {
        margin-right: -5px;
      }
    .carousel h2 {
        font-size: 1.8rem;
    }
    
    .carousel p.subtitle {
        font-size: 60px;
    }
    
    .about-title h1 {
        font-size: 28px;
    }
    
    .about-title h2 {
        font-size: 20px;
    }
    
    .slogan {
        font-size: 18px;
    }
    
    .stats img {
        height: 120px;
    }
    
    .section {
        min-height: 250px;
    }
    
    .section-title {
        font-size: 18px;
        margin-top: -40px;
        margin-left: -18px;
    }
}

/* 810px以下设备适配 */
@media screen and (max-width: 810px) {
    .carousel {
        height: 50vh;
        min-height: 350px;
    }
    
    .carousel h2 {
        font-size: 1.8rem;
        top: 35%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .carousel p.subtitle {
        font-size: 70px;
        top: 20%;
        left: 50%;
    }
    
    .about-title {
        transform: translateY(20px);
    }
    
    .about-title h1 {
        font-size: 32px;
    }
    
    .about-title h2 {
        font-size: 22px;
    }
    
    .slogan {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .stats {
        margin-top: 50px;
    }
    
    .stats img {
        height: 130px;
    }
    
    .Module {
        height: auto;
    }
    
    .Science {
        flex-direction: column;
    }
    
    .section {
        flex: 0 0 100%;
        height: auto;
        min-height: 280px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 15px;
    }
    
    .section:last-child {
        border-bottom: none;
    }
    
    .section-content {
        max-width: 95%;
        font-size: 14px;
        margin-top: 15px;
        opacity: 1;
        height: auto;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .title {
        font-size: 24px;
        top: 2%;
    }
    
    .content-wrapper {
        padding: 20px 30px;
    }
    
    .content-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .action-button {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .bottom-icon {
        width: 35px;
        height: 35px;
    }
    
    .bottom-icon img {
        width: 20px;
        height: 20px;
    }
}